Update all bundled gems to lastest versions
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'home/index.html.haml' do
|
||||
describe 'home/index' do
|
||||
before do
|
||||
assign :playlists, [
|
||||
mock_model(Playlist, :name => 'Electro')
|
||||
|
@@ -1,6 +1,6 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'playlists/edit.html.haml' do
|
||||
describe 'playlists/edit' do
|
||||
let(:playlist) do
|
||||
mock_model(Playlist).as_new_record.as_null_object
|
||||
end
|
||||
|
@@ -1,6 +1,6 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'playlists/index.html.haml' do
|
||||
describe 'playlists/index' do
|
||||
before do
|
||||
assign :playlists, [
|
||||
mock_model(Playlist, :name => 'Electro')
|
||||
|
@@ -1,6 +1,6 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'playlists/new.html.haml' do
|
||||
describe 'playlists/new' do
|
||||
let(:playlist) do
|
||||
mock_model(Playlist).as_new_record.as_null_object
|
||||
end
|
||||
|
@@ -1,6 +1,6 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'sessions/new.html.haml' do
|
||||
describe 'sessions/new' do
|
||||
it 'renders a form to sign in' do
|
||||
render
|
||||
rendered.should have_selector(
|
||||
|
@@ -1,6 +1,6 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'tracks/new.html.haml' do
|
||||
describe 'tracks/new' do
|
||||
let(:track) do
|
||||
mock_model(Track).as_new_record.as_null_object
|
||||
end
|
||||
|
@@ -1,6 +1,6 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'tracks/show.html.haml' do
|
||||
describe 'tracks/show' do
|
||||
let(:track) { Factory.create(:track) }
|
||||
|
||||
before do
|
||||
|
@@ -1,6 +1,6 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'users/new.html.haml' do
|
||||
describe 'users/new' do
|
||||
let(:user) do
|
||||
mock_model(User).as_new_record.as_null_object
|
||||
end
|
||||
|
Reference in New Issue
Block a user