You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
307 B
18 lines
307 B
6 years ago
|
# 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
|