diff --git a/rustle/tests/attribute/index.html b/rustle/tests/attribute/index.html new file mode 100644 index 0000000..9fde04d --- /dev/null +++ b/rustle/tests/attribute/index.html @@ -0,0 +1,15 @@ + + + + + + + Document + + + + + \ No newline at end of file diff --git a/rustle/tests/attribute_expr/index.html b/rustle/tests/attribute_expr/index.html new file mode 100644 index 0000000..9fde04d --- /dev/null +++ b/rustle/tests/attribute_expr/index.html @@ -0,0 +1,15 @@ + + + + + + + Document + + + + + \ No newline at end of file diff --git a/rustle/tests/attribute_self/index.html b/rustle/tests/attribute_self/index.html new file mode 100644 index 0000000..9fde04d --- /dev/null +++ b/rustle/tests/attribute_self/index.html @@ -0,0 +1,15 @@ + + + + + + + Document + + + + + \ No newline at end of file diff --git a/rustle/tests/attribute_template_string/index.html b/rustle/tests/attribute_template_string/index.html new file mode 100644 index 0000000..9fde04d --- /dev/null +++ b/rustle/tests/attribute_template_string/index.html @@ -0,0 +1,15 @@ + + + + + + + Document + + + + + \ No newline at end of file diff --git a/rustle/tests/close-tag/index.html b/rustle/tests/close-tag/index.html new file mode 100644 index 0000000..9fde04d --- /dev/null +++ b/rustle/tests/close-tag/index.html @@ -0,0 +1,15 @@ + + + + + + + Document + + + + + \ No newline at end of file diff --git a/rustle/tests/hello/index.html b/rustle/tests/hello/index.html new file mode 100644 index 0000000..9fde04d --- /dev/null +++ b/rustle/tests/hello/index.html @@ -0,0 +1,15 @@ + + + + + + + Document + + + + + \ No newline at end of file diff --git a/rustle/tests/reactive-assignments/index.html b/rustle/tests/reactive-assignments/index.html new file mode 100644 index 0000000..9fde04d --- /dev/null +++ b/rustle/tests/reactive-assignments/index.html @@ -0,0 +1,15 @@ + + + + + + + Document + + + + + \ No newline at end of file diff --git a/rustle/tests/test_parsing.rs b/rustle/tests/test_parsing.rs index 5341fee..04ad6ca 100644 --- a/rustle/tests/test_parsing.rs +++ b/rustle/tests/test_parsing.rs @@ -16,31 +16,37 @@ fn test_parsing(path: String) { } +// in browser passed #[test] fn test_parsing_demo() { test_parsing("demo".to_owned()) } +// in browser passed #[test] fn test_close_tag() { test_parsing("close-tag".to_owned()) } +// in browser passed #[test] fn test_attribute() { test_parsing("attribute".to_owned()) } +// in browser passed #[test] fn test_attribute_expr() { test_parsing("attribute_expr".to_owned()) } +// in browser passed #[test] fn test_attribute_self() { test_parsing("attribute_self".to_owned()) } -/// to fix +// in browser passed #[test] fn test_attribute_template_string() { test_parsing("attribute_template_string".to_owned()) } +// in browser passed #[test] fn test_parsing_hello() { test_parsing("hello".to_owned()) }