Refs #11487 -- Removed redundant test_long_string() test.

Redundant with model_regress.tests.ModelTests.test_long_textfield
since 3ede430b9a.
This commit is contained in:
Mariusz Felisiak 2018-01-23 14:53:45 +01:00 committed by Tim Graham
parent ff05de760c
commit 950171d7b2
1 changed files with 0 additions and 11 deletions

View File

@ -30,17 +30,6 @@ class Tests(unittest.TestCase):
cursor.execute("BEGIN %s := 'X'; END; ", [var]) cursor.execute("BEGIN %s := 'X'; END; ", [var])
self.assertEqual(var.getvalue(), 'X') self.assertEqual(var.getvalue(), 'X')
def test_long_string(self):
"""Text longer than 4000 chars can be saved and read."""
with connection.cursor() as cursor:
cursor.execute('CREATE TABLE ltext ("TEXT" NCLOB)')
long_str = ''.join(str(x) for x in range(4000))
cursor.execute('INSERT INTO ltext VALUES (%s)', [long_str])
cursor.execute('SELECT text FROM ltext')
row = cursor.fetchone()
self.assertEqual(long_str, row[0].read())
cursor.execute('DROP TABLE ltext')
def test_client_encoding(self): def test_client_encoding(self):
"""Client encoding is set correctly.""" """Client encoding is set correctly."""
connection.ensure_connection() connection.ensure_connection()