25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

14 satır
355 B

  1. require 'test_helper'
  2. class StoreControllerTest < ActionDispatch::IntegrationTest
  3. test "should get index" do
  4. get store_index_url
  5. assert_response :success
  6. assert_select '#columns #side a', minimum: 2
  7. assert_select '#main .entry', 3
  8. assert_select 'h3', 'Programming Ruby 1.9'
  9. assert_select '.price', /\$[,\d]+\.\d\d/
  10. end
  11. end