trusty-cms 2.0.10.pre.beta → 2.0.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -31,7 +31,8 @@ describe 'Pages' do
31
31
  Page.create!(title: 'Voyager Home', breadcrumb: 'Home', slug: '/')
32
32
  visit '/admin/pages'
33
33
  end
34
-
34
+
35
+
35
36
  it 'lets you edit the homepage' do
36
37
  click_link 'Voyager Home'
37
38
 
@@ -7,3 +7,4 @@ def log_in_as(login, plaintext_password = 'password')
7
7
  fill_in 'password', with: plaintext_password
8
8
  click_on 'Login'
9
9
  end
10
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trusty-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.10.pre.beta
4
+ version: 2.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - TrustyCms CMS dev team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-12 00:00:00.000000000 Z
11
+ date: 2015-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tzinfo
@@ -790,7 +790,6 @@ files:
790
790
  - spec/features/layouts_spec.rb
791
791
  - spec/features/pages_spec.rb
792
792
  - spec/fixtures/users.yml
793
- - spec/helpers/regions_helper_spec.rb
794
793
  - spec/rails_helper.rb
795
794
  - spec/spec_helper.rb
796
795
  - spec/support/custom_actions.rb
@@ -985,7 +984,6 @@ test_files:
985
984
  - spec/features/layouts_spec.rb
986
985
  - spec/features/pages_spec.rb
987
986
  - spec/fixtures/users.yml
988
- - spec/helpers/regions_helper_spec.rb
989
987
  - spec/rails_helper.rb
990
988
  - spec/spec_helper.rb
991
989
  - spec/support/custom_actions.rb
@@ -1,16 +0,0 @@
1
- require 'rails_helper'
2
-
3
- RSpec.describe Admin::RegionsHelper, type: :helper do
4
-
5
- describe "#render_region" do
6
-
7
- before :each do
8
- allow(controller).to receive(:controller_name).and_return("page")
9
- allow(controller).to receive(:template_name).and_return("index")
10
- end
11
-
12
- it "outputs html_safe string" do
13
- expect(helper.render_region :foo).to be_html_safe
14
- end
15
- end
16
- end