diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/controllers/about_controller_spec.rb | 12 | ||||
-rw-r--r-- | spec/models/account_spec.rb | 4 | ||||
-rw-r--r-- | spec/views/stream_entries/show.html.haml_spec.rb | 1 |
3 files changed, 3 insertions, 14 deletions
diff --git a/spec/controllers/about_controller_spec.rb b/spec/controllers/about_controller_spec.rb index 2089b3b16..03dddd8c1 100644 --- a/spec/controllers/about_controller_spec.rb +++ b/spec/controllers/about_controller_spec.rb @@ -8,10 +8,6 @@ RSpec.describe AboutController, type: :controller do get :show end - it 'assigns @body_classes' do - expect(assigns(:body_classes)).to eq 'about-body' - end - it 'assigns @instance_presenter' do expect(assigns(:instance_presenter)).to be_kind_of InstancePresenter end @@ -26,10 +22,6 @@ RSpec.describe AboutController, type: :controller do get :more end - it 'assigns @body_classes' do - expect(assigns(:body_classes)).to eq 'about-body' - end - it 'assigns @instance_presenter' do expect(assigns(:instance_presenter)).to be_kind_of InstancePresenter end @@ -44,10 +36,6 @@ RSpec.describe AboutController, type: :controller do get :terms end - it 'assigns @body_classes' do - expect(assigns(:body_classes)).to eq 'about-body' - end - it 'returns http success' do expect(response).to have_http_status(200) end diff --git a/spec/models/account_spec.rb b/spec/models/account_spec.rb index da1ae4888..8fb5bbddf 100644 --- a/spec/models/account_spec.rb +++ b/spec/models/account_spec.rb @@ -618,10 +618,10 @@ RSpec.describe Account, type: :model do expect(account).not_to model_have_error_on_field(:username) end - it 'is valid even if the username doesn\'t only contains letters, numbers and underscores' do + it 'is invalid if the username doesn\'t only contains letters, numbers and underscores' do account = Fabricate.build(:account, domain: 'domain', username: 'the-doctor') account.valid? - expect(account).not_to model_have_error_on_field(:username) + expect(account).to model_have_error_on_field(:username) end it 'is valid even if the username is longer then 30 characters' do diff --git a/spec/views/stream_entries/show.html.haml_spec.rb b/spec/views/stream_entries/show.html.haml_spec.rb index e0681b125..34207aa6b 100644 --- a/spec/views/stream_entries/show.html.haml_spec.rb +++ b/spec/views/stream_entries/show.html.haml_spec.rb @@ -12,6 +12,7 @@ describe 'stream_entries/show.html.haml', without_verify_partial_doubles: true d allow(view).to receive(:full_asset_url).and_return('//asset.host/image.svg') allow(view).to receive(:local_time) allow(view).to receive(:local_time_ago) + assign(:instance_presenter, InstancePresenter.new) end it 'has valid author h-card and basic data for a detailed_status' do |