]> git.openstreetmap.org Git - rails.git/blobdiff - test/unit/old_relation_tag_test.rb
Reorganise tests to match modern rails test layout
[rails.git] / test / unit / old_relation_tag_test.rb
diff --git a/test/unit/old_relation_tag_test.rb b/test/unit/old_relation_tag_test.rb
deleted file mode 100644 (file)
index faff45d..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-require File.dirname(__FILE__) + '/../test_helper'
-
-class OldRelationTagTest < ActiveSupport::TestCase
-  api_fixtures
-  
-  def test_tag_count
-    assert_equal 12, OldRelationTag.count
-  end
-  
-  def test_length_key_valid
-    key = "k"
-    (0..255).each do |i|
-      tag = OldRelationTag.new
-      tag.relation_id = relation_tags(:t1).relation_id
-      tag.version = 1
-      tag.k = key*i
-      tag.v = "v"
-      assert tag.valid?
-    end
-  end
-  
-  def test_length_value_valid
-    val = "v"
-    (0..255).each do |i|
-      tag = OldRelationTag.new
-      tag.relation_id = relation_tags(:t1).relation_id
-      tag.version = 1
-      tag.k = "k"
-      tag.v = val*i
-      assert tag.valid?
-    end
-  end
-  
-  def test_length_key_invalid
-    ["k"*256].each do |i|
-      tag = OldRelationTag.new
-      tag.relation_id = relation_tags(:t1).relation_id
-      tag.version = 1
-      tag.k = i
-      tag.v = "v"
-      assert !tag.valid?, "Key should be too long"
-      assert tag.errors[:k].any?
-    end
-  end
-  
-  def test_length_value_invalid
-    ["k"*256].each do |i|
-      tag = OldRelationTag.new
-      tag.relation_id = relation_tags(:t1).relation_id
-      tag.version = 1
-      tag.k = "k"
-      tag.v = i
-      assert !tag.valid?, "Value should be too long"
-      assert tag.errors[:v].any?
-    end
-  end
-  
-  def test_empty_tag_invalid
-    tag = OldRelationTag.new
-    assert !tag.valid?, "Empty tag should be invalid"
-    assert tag.errors[:old_relation].any?
-  end
-  
-  def test_uniqueness
-    tag = OldRelationTag.new
-    tag.relation_id = relation_tags(:t1).relation_id
-    tag.version = relation_tags(:t1).version
-    tag.k = relation_tags(:t1).k
-    tag.v = relation_tags(:t1).v
-    assert tag.new_record?
-    assert !tag.valid?
-    assert_raise(ActiveRecord::RecordInvalid) {tag.save!}
-    assert tag.new_record?
-  end
-end