This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require File.join( File.dirname(__FILE__), "..", "spec_helper" ) | |
describe FauxQuery do | |
it 'Determin the model being tested' do | |
#Simple case | |
a = FauxQuery.new("Bands in montreal") | |
a.query_model.should == Band | |
#quotted case |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Set of controls for creating the composition */ | |
s.boot; | |
s.freqscope; | |
Synth.new(\chelled, [\freq, 200, \duration, 1]); | |
Synth.new(\chord, [\freq, 920, \fm, 480]); | |
Synth.new(\ground, [\freq, (200..2000).choose]); | |
Synth.new(\ground, [\freq, 1500]); | |
//Chelled |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Set of controls for creating the composition */ | |
s.boot; | |
s.freqscope; | |
Synth.new(\chelled, [\freq, 200, \duration, 1]); | |
Synth.new(\chord, [\freq, 920, \fm, 480]); | |
Synth.new(\ground, [\freq, (200..2000).choose]); | |
Synth.new(\ground, [\freq, 1500]); | |
//Chelled |
NewerOlder