mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 00:03:37 +08: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
|
||
|
|