main
1require 'spec_helper'
2
3describe Neighbourhood do
4 describe :attributes do
5 subject { Neighbourhood.new }
6 it { should respond_to :name }
7 it { should respond_to :status }
8 end
9end