Sha256: d6fa945315c893acd78b3d042a5fdcb6b49d73f0ac23ed12e593fcfd42c5dcfc
Contents?: true
Size: 328 Bytes
Versions: 20
Compression:
Stored size: 328 Bytes
Contents
require 'test_helper' class ProductAcceptanceTest < ActionDispatch::IntegrationTest setup do @product = create(:product, name: 'ipad', description: 'awesome ipad from Apple') end test "show page" do visit nimbleshop_simply.product_path(@product) assert page.has_content?('awesome ipad from Apple') end end
Version data entries
20 entries across 20 versions & 2 rubygems