require "test_helper"

class StaticPagesControllerTest < ActionDispatch::IntegrationTest
  test "should get home" do
    get static_pages_home_url
    assert_response :success
  end

  test "should get buy" do
    get static_pages_buy_url
    assert_response :success
  end

  test "should get info" do
    get static_pages_info_url
    assert_response :success
  end
end
