summaryrefslogtreecommitdiff
path: root/slixmpp/test
diff options
context:
space:
mode:
Diffstat (limited to 'slixmpp/test')
-rw-r--r--slixmpp/test/__init__.py11
-rw-r--r--slixmpp/test/integration.py11
-rw-r--r--slixmpp/test/livesocket.py11
-rw-r--r--slixmpp/test/mocksocket.py11
-rw-r--r--slixmpp/test/slixtest.py11
5 files changed, 20 insertions, 35 deletions
diff --git a/slixmpp/test/__init__.py b/slixmpp/test/__init__.py
index 0244afe3..d73f2ebe 100644
--- a/slixmpp/test/__init__.py
+++ b/slixmpp/test/__init__.py
@@ -1,11 +1,8 @@
-"""
- Slixmpp: The Slick XMPP Library
- Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
- This file is part of Slixmpp.
-
- See the file LICENSE for copying permission.
-"""
+# Slixmpp: The Slick XMPP Library
+# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
+# This file is part of Slixmpp.
+# See the file LICENSE for copying permission.
from slixmpp.test.mocksocket import TestSocket, TestTransport
from slixmpp.test.livesocket import TestLiveSocket
from slixmpp.test.slixtest import *
diff --git a/slixmpp/test/integration.py b/slixmpp/test/integration.py
index 7da3f86a..e8093107 100644
--- a/slixmpp/test/integration.py
+++ b/slixmpp/test/integration.py
@@ -1,11 +1,8 @@
-"""
- Slixmpp: The Slick XMPP Library
- Copyright (C) 2020 Mathieu Pasquet
- This file is part of Slixmpp.
-
- See the file LICENSE for copying permission.
-"""
+# Slixmpp: The Slick XMPP Library
+# Copyright (C) 2020 Mathieu Pasquet
+# This file is part of Slixmpp.
+# See the file LICENSE for copying permission.
import asyncio
import os
try:
diff --git a/slixmpp/test/livesocket.py b/slixmpp/test/livesocket.py
index e7deb617..92669a39 100644
--- a/slixmpp/test/livesocket.py
+++ b/slixmpp/test/livesocket.py
@@ -1,11 +1,8 @@
-"""
- Slixmpp: The Slick XMPP Library
- Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
- This file is part of Slixmpp.
-
- See the file LICENSE for copying permission.
-"""
+# Slixmpp: The Slick XMPP Library
+# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
+# This file is part of Slixmpp.
+# See the file LICENSE for copying permission.
import socket
import threading
from queue import Queue
diff --git a/slixmpp/test/mocksocket.py b/slixmpp/test/mocksocket.py
index 149df29c..c553fcd3 100644
--- a/slixmpp/test/mocksocket.py
+++ b/slixmpp/test/mocksocket.py
@@ -1,11 +1,8 @@
-"""
- Slixmpp: The Slick XMPP Library
- Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
- This file is part of Slixmpp.
-
- See the file LICENSE for copying permission.
-"""
+# Slixmpp: The Slick XMPP Library
+# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
+# This file is part of Slixmpp.
+# See the file LICENSE for copying permission.
import socket
from queue import Queue
diff --git a/slixmpp/test/slixtest.py b/slixmpp/test/slixtest.py
index fbeff3c7..6ae2cc8f 100644
--- a/slixmpp/test/slixtest.py
+++ b/slixmpp/test/slixtest.py
@@ -1,11 +1,8 @@
-"""
- Slixmpp: The Slick XMPP Library
- Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
- This file is part of Slixmpp.
-
- See the file LICENSE for copying permission.
-"""
+# Slixmpp: The Slick XMPP Library
+# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
+# This file is part of Slixmpp.
+# See the file LICENSE for copying permission.
import unittest
from queue import Queue
from xml.parsers.expat import ExpatError