Show More
Commit Description:
add current score by group
Commit Description:
add current score by group
References:
File last commit:
Show/Diff file:
Action:
test/fixtures/submissions.yml | 48 lines | 816 B | text/x-yaml | YamlLexer |
pramook
initial commit...
r0 # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
add submission test
r761 add1_by_admin:
pramook
initial commit...
r0 id: 1
add submission test
r761 user: admin
problem: prob_add
language: Language_c
source:
\#include <stdio>
\#include <stdlib>
int main() {
cout << 1 << endl;
}
sub1_by_admin:
pramook
initial commit...
r0 id: 2
add submission test
r761 user: admin
problem: prob_sub
language: Language_c
source:
\#include <stdio>
\#include <stdlib>
int main() {
cout << 2 << endl;
}
add1_by_john:
id: 3
user: john
problem: prob_add
language: Language_c
source:
\#include <stdio>
\#include <stdlib>
int main() {
cout << 33 << endl;
}
sub1_by_james:
id: 4
user: james
problem: prob_sub
language: Language_c
source:
\#include <stdio>
\#include <stdlib>
int main() {
cout << 44 << endl;
}