marcomd/Active_Leonardo

View on GitHub
lib/generators/rspec/leointegration/templates/feature.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'spec_helper'

feature "<%= class_name.pluralize %>" do
    scenario "When visit the index i should see some <%= plural_table_name %>" do
      # Write some real scenario
      visit <%= index_helper %>_path
      response.status.should be(200)
    end
end