blob: cff5864da16376b8fc789ec490ebc102c22174ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'test_helper'
class OuiTest < ActiveSupport::TestCase
def test_should_have_a_valid_factory
assert FactoryGirl.build(:oui).valid?
end
def test_that_the_initial_state_should_be_active
@oui = FactoryGirl.create(:oui)
assert_equal 'active', @oui.state
assert @oui.active?
end
end
|