socialforge/test/unit/memo_test.rb

18 lines
324 B
Ruby
Raw Normal View History

2014-10-21 15:13:18 +08:00
# encoding: utf-8
require 'test_helper'
class MemoTest < ActiveSupport::TestCase
test "the truth" do
assert true
end
def test_the_truth
assert true
end
test "should not save memo without content" do
memo = Memo.new
assert !memo.save, "assert, save memo without content."
end
end