summaryrefslogtreecommitdiff
path: root/test/unit/oui_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/oui_test.rb')
-rw-r--r--test/unit/oui_test.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/unit/oui_test.rb b/test/unit/oui_test.rb
new file mode 100644
index 0000000..de48a97
--- /dev/null
+++ b/test/unit/oui_test.rb
@@ -0,0 +1,14 @@
+require 'test_helper'
+
+class OuiTest < ActiveSupport::TestCase
+ def test_should_have_a_valid_factory
+ assert Factory.build(:oui).valid?
+ end
+
+ def test_that_the_initial_state_should_be_active
+ @oui = Factory.create(:oui)
+ assert_equal 'active', @oui.state
+ assert @oui.active?
+ end
+
+end