]> git.openstreetmap.org Git - rails.git/blob - test/models/note_comment_test.rb
d1210f6193fed8717530706a2a14b86c365f7c79
[rails.git] / test / models / note_comment_test.rb
1 # -*- coding: utf-8 -*-
2 require 'test_helper'
3
4 class NoteCommentTest < ActiveSupport::TestCase
5   fixtures :users, :notes, :note_comments
6
7   def test_body_valid
8     ok = [ "Name", "vergrößern", "foo\x0abar",
9            "ルシステムにも対応します", "輕觸搖晃的遊戲", ]
10     bad = [ "foo\x00bar", "foo\x08bar", "foo\x1fbar", "foo\x7fbar",
11             "foo\ufffebar", "foo\uffffbar" ]
12
13     ok.each do |body|
14       note_comment = note_comments(:t1)
15       note_comment.body = body
16       assert note_comment.valid?, "#{body} is invalid, when it should be"
17     end
18     
19     bad.each do |body|
20       note_comment = note_comments(:t1)
21       note_comment.body = body
22       assert !note_comment.valid?, "#{body} is valid when it shouldn't be"
23     end
24   end
25 end