示例#1
0
 def test_save(self):
     init = self.__class__.test_parameters
     P1 = JSONParameterSet(init)
     P1.save("test_file")
     P2 = JSONParameterSet("test_file")
     self.assertEqual(P1.as_dict(), P2.as_dict())
     os.remove("test_file")
示例#2
0
 def test_save(self):
     init = self.__class__.test_parameters
     P1 = JSONParameterSet(init)
     P1.save("test_file")
     P2 = JSONParameterSet("test_file")
     self.assertEqual(P1.as_dict(), P2.as_dict())
     os.remove("test_file")
示例#3
0
 def test__init__should_accept_a_filename_or_string(self):
     init = self.__class__.test_parameters
     P1 = JSONParameterSet(init)
     with open("test_file", "w") as f:
         f.write(init)
     P2 = JSONParameterSet("test_file")
     self.assertEqual(P1.as_dict(), P2.as_dict())
     os.remove("test_file")
示例#4
0
 def test__init__should_accept_a_filename_or_string(self):
     init = self.__class__.test_parameters
     P1 = JSONParameterSet(init)
     with open("test_file", "w") as f:
         f.write(init)
     P2 = JSONParameterSet("test_file")
     self.assertEqual(P1.as_dict(), P2.as_dict())
     os.remove("test_file")
示例#5
0
 def test__pop(self):
     init = self.__class__.test_parameters
     P = JSONParameterSet(init)
     self.assertEqual(P.pop('a'), 2)
     self.assertEqual(P.pop('c'), {"a": 1, "b": 2})
     self.assertEqual(P.as_dict(), {'b': "hello", "d": [1, 2, 3, 4]})
     self.assertEqual(P.pop('foo', 42), 42)
     self.assertEqual(P.pop('foo', None), None)
示例#6
0
 def test__pop(self):
     init = self.__class__.test_parameters
     P = JSONParameterSet(init)
     self.assertEqual(P.pop('a'), 2)
     self.assertEqual(P.pop('c'), {"a": 1, "b": 2})
     self.assertEqual(P.as_dict(), {'b': "hello", "d": [1, 2, 3, 4]})
     self.assertEqual(P.pop('foo', 42), 42)
     self.assertEqual(P.pop('foo', None), None)
示例#7
0
 def test__pretty__output_should_be_useable_to_create_an_identical_parameterset(self):
     init = self.__class__.test_parameters
     P1 = JSONParameterSet(init)
     P2 = JSONParameterSet(P1.pretty())
     self.assertEqual(P1.as_dict(), P2.as_dict())
示例#8
0
 def test__init__should_accept_an_empty_initializer(self):
     P = JSONParameterSet("")
     self.assertEqual(P.as_dict(), {})
示例#9
0
 def test__pretty__output_should_be_useable_to_create_an_identical_parameterset(
         self):
     init = self.__class__.test_parameters
     P1 = JSONParameterSet(init)
     P2 = JSONParameterSet(P1.pretty())
     self.assertEqual(P1.as_dict(), P2.as_dict())
示例#10
0
 def test__init__should_accept_an_empty_initializer(self):
     P = JSONParameterSet("")
     self.assertEqual(P.as_dict(), {})