Beispiel #1
0
 def test_has_fixed_start_period_list_intercepts_fixed_x_zeros(self):
     expected = [True, True, True, False]
     self.estimate_X_zeros = False
     calculated = msp._stage_has_fixed_start_period_list(self, 'intercepts')
     assert_equal(expected, calculated)
Beispiel #2
0
 def test_has_fixed_start_period_list_intercepts_free_x_zeros(self):
     expected = [False, True, True, False]
     calculated = msp._stage_has_fixed_start_period_list(self, 'intercepts')
     assert_equal(expected, calculated)
Beispiel #3
0
 def test_has_fixed_start_period_list_loadings(self):
     expected = [False, True, True, False]
     calculated = msp._stage_has_fixed_start_period_list(self, 'loadings')
     assert_equal(expected, calculated)