socialforge/test/unit/memo_test.rb

17 lines
289 B
Ruby

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