blob: de64e4f7d8d6c63c67321c45c6f75bae10357227 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | require 'test_helper'
class TriggerControllerTest < ActionController::TestCase
  test "should get voicemail" do
    get :voicemail
    assert_response :success
  end
  test "should get fax" do
    get :fax
    assert_response :success
  end
end
 |