redirect_spec.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. require File.dirname(__FILE__) + '/../spec_helper'
  2. describe 'Given an empty redirects table' do
  3.   before(:each) do
  4.     Redirect.delete_all
  5.   end
  6.   it 'redirects are unique' do
  7.     lambda { Redirect.create!(:from_path => 'foo/bar', :to_path => '/') }.should_not raise_error
  8.     redirect = Redirect.new(:from_path => 'foo/bar', :to_path => '/')
  9.     redirect.should_not be_valid
  10.     redirect.errors.on(:from_path).should == 'has already been taken'
  11.   end
  12. end