コード例 #1
0
ファイル: test_utils.py プロジェクト: xixibu/sqlalchemy
    def test_callable_argspec_method(self):
        class Foo(object):
            def foo(self, x, y, **kw):
                pass

        eq_(get_callable_argspec(Foo.foo),
            (['self', 'x', 'y'], None, 'kw', None))
コード例 #2
0
ファイル: test_utils.py プロジェクト: Hoops/sqlalchemy
 def test_callable_argspec_fn(self):
     def foo(x, y, **kw):
         pass
     eq_(
         get_callable_argspec(foo),
         (['x', 'y'], None, 'kw', None)
     )
コード例 #3
0
ファイル: test_utils.py プロジェクト: Hoops/sqlalchemy
 def test_callable_argspec_method(self):
     class Foo(object):
         def foo(self, x, y, **kw):
             pass
     eq_(
         get_callable_argspec(Foo.foo),
         (['self', 'x', 'y'], None, 'kw', None)
     )
コード例 #4
0
ファイル: test_utils.py プロジェクト: xixibu/sqlalchemy
    def test_callable_argspec_fn(self):
        def foo(x, y, **kw):
            pass

        eq_(get_callable_argspec(foo), (['x', 'y'], None, 'kw', None))