diff --git a/test/test/Rakefile b/test/test/Rakefile index 2c333ef1..9c5f343d 100644 --- a/test/test/Rakefile +++ b/test/test/Rakefile @@ -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']) diff --git a/test/test/spec/audio_spec.rb b/test/test/spec/audio_spec.rb new file mode 100644 index 00000000..a541028f --- /dev/null +++ b/test/test/spec/audio_spec.rb @@ -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