def test_main_dry_run_False_does_not_save(self):
     assert_equal(len(get_registration_contributors()), 1)
     main(dry_run=True)
     assert_equal(len(get_registration_contributors()), 1)
 def test_main_dry_run_False_does_not_save(self):
     assert_equal(len(get_registration_contributors()), 1)
     main(dry_run=True)
     assert_equal(len(get_registration_contributors()), 1)
 def test_get_registration_contributors(self):
     assert_equal(models.User.find().count(), 2)
     registration_contributors = get_registration_contributors()
     assert_equal(len(registration_contributors), 1)
 def test_get_registration_contributors(self):
     assert_equal(models.User.find().count(), 2)
     registration_contributors = get_registration_contributors()
     assert_equal(len(registration_contributors), 1)