]> git.openstreetmap.org Git - rails.git/commitdiff
First current node tag test
authorShaun McDonald <shaun@shaunmcdonald.me.uk>
Fri, 18 Jul 2008 17:10:24 +0000 (17:10 +0000)
committerShaun McDonald <shaun@shaunmcdonald.me.uk>
Fri, 18 Jul 2008 17:10:24 +0000 (17:10 +0000)
test/unit/current_node_tag_test.rb [new file with mode: 0644]

diff --git a/test/unit/current_node_tag_test.rb b/test/unit/current_node_tag_test.rb
new file mode 100644 (file)
index 0000000..69b123b
--- /dev/null
@@ -0,0 +1,10 @@
+require File.dirname(__FILE__) + '/../test_helper'
+
+class CurrentNodeTagTest < Test::Unit::TestCase
+  fixtures :current_node_tags, :nodes
+  
+  def test_tag_count
+    assert_equal 3, NodeTag.count
+  end
+  
+end