mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-01 13:10:58 -05:00
We deprecated controller and view specs on the grounds that they were brittle, and were a poorer measure of user experience than feature specs. However, feature specs have their own problems: they're much slower to run, and flakier (see #901). We also ran into a few cases where feature specs erroneously passed because they were checking for the presence of a string that occurred in the error page! Hence, we're cautiously un-deprecating controller and view specs. Fixes #1132
19 lines
467 B
Ruby
19 lines
467 B
Ruby
require 'rails_helper'
|
|
|
|
describe AccountsController do
|
|
login_member(:admin_member)
|
|
|
|
def valid_attributes
|
|
{ "paid_until" => Time.now }
|
|
end
|
|
|
|
def create_account
|
|
# account details are automatically created when you create a new
|
|
# member; creating them manually will just cause errors as only one is
|
|
# allowed. This method has been left here in case it's useful in
|
|
# future.
|
|
member = FactoryBot.create(:member)
|
|
member.account
|
|
end
|
|
end
|