mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
12 lines
173 B
Ruby
12 lines
173 B
Ruby
|
require 'spec_helper'
|
||
|
require_dependency 'badge'
|
||
|
|
||
|
describe Badge do
|
||
|
|
||
|
it 'has a valid system attribute for new badges' do
|
||
|
Badge.new.system?.should be_false
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|