Rename source files: .cpp -> .cc
This commit is contained in:
parent
31a58bc7e4
commit
a411e43484
49 changed files with 3 additions and 3 deletions
|
|
@ -1,23 +0,0 @@
|
|||
#include "compiler_spec_helper.h"
|
||||
#include "compiler/build_tables/rule_can_be_blank.h"
|
||||
|
||||
using namespace rules;
|
||||
using build_tables::rule_can_be_blank;
|
||||
|
||||
START_TEST
|
||||
|
||||
describe("checking if rules can be blank", [&]() {
|
||||
it("handles sequences", [&]() {
|
||||
rule_ptr rule = seq({
|
||||
choice({
|
||||
str("x"),
|
||||
blank(),
|
||||
}),
|
||||
str("y"),
|
||||
});
|
||||
|
||||
AssertThat(rule_can_be_blank(rule), Equals(false));
|
||||
});
|
||||
});
|
||||
|
||||
END_TEST
|
||||
Loading…
Add table
Add a link
Reference in a new issue