ToruNiina
f178379c07
test: add test_find
2019-06-20 14:34:42 +09:00
ToruNiina
9663a6bbdb
Merge branch 'master' into v3
2019-06-19 19:53:08 +09:00
ToruNiina
cab3144507
style: format CMakelists.txt
2019-06-19 16:53:45 +09:00
ToruNiina
7e5859ba73
Merge branch 'master' into v3
2019-06-19 15:36:27 +09:00
ToruNiina
86e55c3bf7
test: check serialization keeps comments
2019-06-18 01:26:16 +09:00
ToruNiina
159283fdad
test: check preserve_comment keep it read
2019-06-18 01:25:43 +09:00
ToruNiina
fb5834caab
refactor: exchange order of test section
2019-06-18 00:45:30 +09:00
ToruNiina
228487eafd
test: fix typos in tests
2019-06-17 23:46:42 +09:00
ToruNiina
bf2dc76d5e
test: add test for templatized conversions
2019-06-17 23:21:18 +09:00
ToruNiina
4008c24e84
test: add test for init-list-map to value conversion
2019-06-17 22:50:38 +09:00
ToruNiina
bf4eae0b76
test: drop test for find_or(table)
2019-06-17 22:14:26 +09:00
Toru Niina
569341a514
Merge pull request #69 from KerstinKeller/cmake_install
...
Allow to install toml11 library with CMake.
2019-06-17 18:03:00 +09:00
ToruNiina
cbaaaaca7c
⏪ revert recursive find function
...
I found that in a user-code (I'm also one of the users of this library),
this new feature sometimes causes an error. Some of my code won't
compile because of this change. Since toml::table is convertible to
toml::value *implicitly*, if toml::find(table, key, tablename) was
called, the overload resolution becomes ambiguous with toml::find(
value, key1, key2). But dropping support for toml::find(toml::table,
key, tablename) is a breaking change. So I concluded that now is not
the right time yet.
2019-06-16 19:55:40 +09:00
ToruNiina
8665272bab
test: add test for custom basic_value type
2019-06-15 20:25:19 +09:00
ToruNiina
9acc55a7ac
test: add test for discard_comment
2019-06-15 17:18:25 +09:00
ToruNiina
177022b2cb
test: update tests for comment
2019-06-15 17:13:25 +09:00
KerstinKeller
acbc2a73cb
Allow to install tom11 library with CMake.
...
Add option to build tests.
2019-06-14 17:24:21 +02:00
ToruNiina
6345910c3e
🔀 Merge branch 'master' into v3
2019-06-08 20:05:05 +09:00
ToruNiina
54d46f08c3
🔀 Merge branch 'master' into v3
2019-06-08 19:40:11 +09:00
ToruNiina
57cb806e14
Merge branch 'master' into throw-from-as-something
2019-06-08 19:23:32 +09:00
ToruNiina
d6f3654185
refactor: reduce test code by using CHECK_THROW
2019-06-08 19:23:12 +09:00
ToruNiina
8befe3f1ad
test: add test for throw/nothrow versions of as_*
2019-06-08 19:20:09 +09:00
ToruNiina
31debcb8aa
🔀 Merge branch 'master' into recursive-find
2019-06-07 19:02:20 +09:00
ToruNiina
897aecf5d4
test: avoid deprecated functions in the test codes
2019-06-07 13:32:02 +09:00
ToruNiina
014d882f8f
feat: enable to find value by recursive search
2019-06-07 00:06:14 +09:00
ToruNiina
e781545c53
feat(WIP): diable test for comments once
...
because the interfaces would be changed a lot.
2019-06-06 22:34:08 +09:00
ToruNiina
53efaed179
test: update interfaces of parse_* and value
2019-06-03 22:01:16 +09:00
ToruNiina
761718b3b9
test: update retval of parse and related get/find
2019-06-03 21:44:47 +09:00
ToruNiina
cf1114b47b
test: update typenames from Camel to snake
2019-06-02 22:13:36 +09:00
ToruNiina
ad3c1950f2
test: use find instead of get<T>(v.at(""))
2019-06-02 22:12:52 +09:00
ToruNiina
296ba060ef
test: update typename from CamelCase to snake_case
2019-06-02 22:11:37 +09:00
ToruNiina
c313e1382c
test: update test for multiple translation units
2019-06-02 22:00:56 +09:00
ToruNiina
7d34436535
test: update value_t::* names in the test code
2019-06-02 21:36:09 +09:00
ToruNiina
c0b6ca762a
feat: 💥 drop from_toml support
2019-06-02 19:27:03 +09:00
ToruNiina
b13e727b90
refactor: remove unused func, combinator::pattern
...
because it is not human-readable (too long and redundant)
2019-05-30 18:05:47 +09:00
ToruNiina
4cbbcd8f62
Merge branch 'master' into as-something
2019-04-27 19:04:44 +09:00
Toru Niina
a2631ecacb
Merge pull request #60 from ToruNiina/string-view
...
support std::string_view
2019-04-27 18:33:59 +09:00
ToruNiina
4bcc5e8375
Merge branch 'master' into as-something
2019-04-27 17:42:12 +09:00
ToruNiina
aa7b9a3965
refactor: rename as_floating -> as_float
...
Actually, since `floating` is used for toml::types, `as_floating`
seems to be clearer. But currently `is_*` functions uses `float`,
not `floating`, so `as_float` is chosen for the consistency.
In a future release, possibly v3, those names may need to be
re-considered for clarity.
2019-04-27 16:45:25 +09:00
ToruNiina
84ac1d10f3
test: add test for toml::value::as_something
2019-04-27 16:22:50 +09:00
ToruNiina
f3bdf083fe
fix: fix typo in test code for string_view
2019-04-26 16:51:23 +09:00
ToruNiina
819351f5a4
test: add test for init toml::value by string_view
2019-04-26 16:32:23 +09:00
ToruNiina
2967cebfb3
test: add test to get a toml::value as string_view
2019-04-26 16:31:59 +09:00
ToruNiina
32e9a2c1c7
test: add test for comments in an array
2019-04-26 15:35:41 +09:00
ToruNiina
8e0a40a1aa
test: add test for getting comments
2019-04-25 22:34:12 +09:00
ToruNiina
0a3a41a708
test: add test for literals for difficult case
2019-04-14 20:06:11 +09:00
ToruNiina
5aebd6b562
fix: restore the back compat of format_error
...
the following code was okay in the last release
```
toml::format_error("[test]", v, "test", {"hint1", "hint2"})
```
but was not okay in the current master. This commit fixes this.
cons: By this, the number of values to show is limited upto 3.
2019-03-20 20:46:22 +09:00
ToruNiina
b51a8d5966
fix: add missing include file in test code
2019-03-20 00:58:58 +09:00
ToruNiina
39bc3c64fe
test: add test for ""_toml literals
2019-03-20 00:36:46 +09:00
ToruNiina
7a0ecf977d
feat: add find_or(table, key, fallback)
...
get_or(value, fallback) is still ok, but get_or(table, key, fallback)
is now deprecated.
2019-03-18 17:44:03 +09:00