12 lines
220 B
Ruby
12 lines
220 B
Ruby
|
require 'test_helper'
|
||
|
|
||
|
class MemosControllerTest < ActionController::TestCase
|
||
|
# test "the truth" do
|
||
|
# assert true
|
||
|
# end
|
||
|
def test_memo_create_fail
|
||
|
memo = Memo.create(:subject => nil)
|
||
|
assert true
|
||
|
end
|
||
|
end
|