socialforge/test/functional/memos_controller_test.rb

12 lines
231 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