2014-01-10 21:02:52 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
|
|
describe IcecastDirectory do
|
|
|
|
|
|
|
|
|
|
let(:idir) { IcecastDirectory.new }
|
|
|
|
|
|
|
|
|
|
before(:all) do
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
2014-01-14 21:22:05 +00:00
|
|
|
|
2014-01-10 21:02:52 +00:00
|
|
|
it "save" do
|
|
|
|
|
idir.save.should be_true
|
2014-01-14 21:22:05 +00:00
|
|
|
idir.dumpXml
|
2014-01-10 21:02:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
end
|