This file contains 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
#contexts => ["mini_meet_submissions#rate:vote"] | |
#action => [:contexts => "mini_meet_submissions#rate"] | |
def self.does_context_match?(contexts, action) | |
if contexts == nil | |
return true | |
end | |
contexts.push("*").each do |c| | |
if(c.start_with? *action[:contexts]) | |
return true |
This file contains 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
{ | |
"actor": { | |
"name": "Dan", | |
"mbox": "[email protected]" | |
}, | |
"verb": { | |
"id": "http://adlnet.gov/expapi/verbs/completed", | |
"display": {"en-US": "completed"} | |
}, | |
"object": { |
This file contains 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
{ | |
"meets": | |
[ | |
{ | |
"id": "5321a679374c100b81000019", | |
"created_at": "2014-01-07 19:54:28 +0000", | |
"name": "Assignment #1", | |
"description": "adf asdfasdfasdfasdf", | |
"summary": "ad asdf asdf asdf asdf asdf ......", | |
"status_description": "Submit Now", |
This file contains 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
{ | |
"attachment"=>{ | |
"id"=>"535824f81baf6a2c59000010", | |
"file_name"=>"test_file.txt", | |
"file_remote_url"=>nil | |
} | |
} |
This file contains 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
{ | |
"attachments": | |
[{ | |
"id":"53474e16c208e64b0c000002", | |
"file_name":"nurse leader manager.pdf", | |
"file_remote_url":"https://s3.amazonaws.com/assets02.apprennet.com/2014/04/10/22/06/15/711/nurse_leader_manager.pdf" | |
}] | |
} |
This file contains 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
{"submission": | |
{ | |
"id":"535558321baf6a00be000002", | |
"user_id":"52a6467e96ce892b96000055", | |
"meet_id":"51472390d8d36d7f83000001", | |
"video":{ | |
"mp4":"http://test01.lawmeets.com.s3.amazonaws.com/1e/20ca80c97c11e39177399c8684c9d2/capturedvideo.mp4", | |
"webm":"http://test01.lawmeets.com.s3.amazonaws.com/1e/222a10c97c11e3a0ddd193f215c574/capturedvideo.webm", | |
"transloadit_assembly_id":"111ae5f0c97c11e3a10b39e170096e9b", | |
"transloadit_assembly_url":"http://api2.jaying.transloadit.com/assemblies/111ae5f0c97c11e3a10b39e170096e9b", |
This file contains 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
{ | |
"session": { | |
"user": { | |
"id": "52cace83374c10105e000005", | |
"email": "[email protected]", | |
"login": "jason", | |
"first_name": "Jason", | |
"last_name": "Blanchard", | |
"authentication_token": "HTjy9Qpm9XVvtjUJRTkH", | |
"organizations": [ |
This file contains 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
it "returns correct number of submissions" do | |
meet = FactoryGirl.create(:meet, :user_group => group) | |
num = rand(10) #random number of submissions from 0 to 10 | |
num.times do | |
FactoryGirl.create(:meet_submission, :meet => meet) | |
end | |
result = group.get_submission_count | |
expect(result).to eq(num) | |
end |
NewerOlder