add test for AudioToolbox

This commit is contained in:
Watson
2014-01-20 18:02:59 +09:00
parent f4b1536e38
commit fc4f0d7e86
2 changed files with 7 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ ENV['output'] ||= 'pretty_spec_dox'
Motion::Project::App.setup do |app|
# Use `rake config' to see complete project settings.
app.name = 'test'
app.frameworks += ['AddressBook', 'AddressBookUI', 'CoreData', 'CoreMIDI', 'GameKit']
app.frameworks += ['AddressBook', 'AddressBookUI', 'CoreData', 'CoreMIDI', 'GameKit', 'AudioToolbox']
app.vendor_project('vendor/code', :static)
app.spec_files.insert(1, *FileList['../helpers/*.rb'])

View File

@@ -0,0 +1,6 @@
# https://hipbyte.freshdesk.com/helpdesk/tickets/1514
describe "AudioToolbox" do
it "cftype structure should work" do
AUGraph.type.should == "^{OpaqueAUGraph=}"
end
end