]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- actually check the list of views!
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 27 Dec 2013 21:37:57 +0000 (16:37 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 27 Dec 2013 21:37:57 +0000 (16:37 -0500)
lib/sqlalchemy/testing/suite/test_reflection.py

index 228bf44ce14c61613354a4e1e17c991b24d7d4a3..b30f32cffbfafc1d0125699144f9ba427f0b4652 100644 (file)
@@ -147,6 +147,7 @@ class ComponentReflectionTest(fixtures.TablesTest):
             table_names = insp.get_view_names(schema)
             table_names.sort()
             answer = ['email_addresses_v', 'users_v']
+            eq_(sorted(table_names), answer)
         else:
             table_names = insp.get_table_names(schema,
                                                order_by=order_by)