Show More
Commit Description:
merge closed branch
Commit Description:
merge closed branch
References:
File last commit:
Show/Diff file:
Action:
test/fixtures/submissions.yml | 61 lines | 1.1 KiB | text/x-yaml | YamlLexer |
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
add1_by_admin:
user: admin
problem: prob_add
language: Language_c
submitted_at: "2019-10-22 08:34"
source:
xxx
\#include <stdio>
\#include <stdlib>
int main() {
cout << 1 << endl;
}
sub1_by_admin:
user: admin
problem: prob_sub
language: Language_c
submitted_at: "2019-10-22 08:34"
source:
\#include <stdio>
\#include <stdlib>
int main() {
cout << 2 << endl;
}
add1_by_john:
user: john
problem: prob_add
language: Language_c
submitted_at: "2019-10-22 08:34"
source:
\#include <stdio>
\#include <stdlib>
int main() {
cout << 33 << endl;
}
add1_by_james:
user: james
problem: prob_add
language: Language_c
submitted_at: "2019-10-22 08:34"
source:
\#include <stdio>
\#include <stdlib>
int main() {
cout << 33 << endl;
}
sub1_by_james:
user: james
problem: prob_sub
language: Language_c
submitted_at: "2019-10-22 08:34"
source:
\#include <stdio>
\#include <stdlib>
int main() {
cout << 44 << endl;
}