import unittest
from ctypes import *

class ArrayInterfaceTest(unittest.TestCase):
    def test_has_attribute(self):
        typ = (c_int * 3 * 4 * 5)
        cobj = typ.__array_interface__

if __name__ == "__main__":
    unittest.main()
