require "test_helper" class TodosHelpersTest < ActionView::TestCase include TodosHelper test "remote_edit_button" do html = remote_edit_button(todos(:call_bill)) assert_equal "\"Edit\"", html end test "remote_delete_menu" do html = remote_delete_menu_item(todos(:call_bill)) assert_equal "Delete", html end end