spec: remove un-needed instance variables

Change-Id: I0e2cf0e8dcdf0bf017113c3582b880c57937ef31
Reviewed-on: https://gerrit.instructure.com/12309
Tested-by: Jenkins <jenkins@instructure.com>
Reviewed-by: Bryan Madsen <bryan@instructure.com>
This commit is contained in:
Jake Sorce 2012-07-17 13:49:45 -06:00
parent 2278ce66f8
commit a787ee4b6a
2 changed files with 0 additions and 2 deletions

View File

@ -117,7 +117,6 @@ end
describe 'shared settings specs' do
describe "settings" do
let(:url) { "/accounts/#{Account.default.id}/statistics" }
let(:account) { Account.default }
let(:account_settings_url) { "/accounts/#{Account.default.id}/settings" }
let(:admin_tab_url) { "/accounts/#{Account.default.id}/settings#tab-users" }

View File

@ -4,7 +4,6 @@ require File.expand_path(File.dirname(__FILE__) + '/../../helpers/basic/settings
describe "sub account settings" do
describe "shared settings specs" do
let(:account) { Account.create(:name => 'sub account from default account', :parent_account => Account.default) }
let(:url) { "/accounts/#{account.id}/statistics" }
let(:account_settings_url) { "/accounts/#{account.id}/settings" }
let(:admin_tab_url) { "/accounts/#{account.id}/settings#tab-users" }
it_should_behave_like "settings basic tests"