mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
35 lines
819 B
C++
35 lines
819 B
C++
|
#define SOL_CHECK_ARGUMENTS
|
||
|
|
||
|
#include <catch.hpp>
|
||
|
#include <sol.hpp>
|
||
|
|
||
|
TEST_CASE("storage/registry=construction", "ensure entries from the registry can be retrieved") {
|
||
|
const auto& script = R"(
|
||
|
function f()
|
||
|
return 2
|
||
|
end
|
||
|
)";
|
||
|
|
||
|
sol::state lua;
|
||
|
sol::function f = lua["f"];
|
||
|
sol::reference r = lua["f"];
|
||
|
sol::function regf(lua, sol::ref_index(f.registry_index()));
|
||
|
sol::reference regr(lua, sol::ref_index(f.registry_index()));
|
||
|
bool isequal = f == r;
|
||
|
REQUIRE(isequal);
|
||
|
isequal = f == regf;
|
||
|
REQUIRE(isequal);
|
||
|
isequal = f == regr;
|
||
|
REQUIRE(isequal);
|
||
|
}
|
||
|
|
||
|
TEST_CASE("storage/main-thread", "ensure round-tripping and pulling out thread data even on 5.1 with a backup works") {
|
||
|
sol::state lua;
|
||
|
{
|
||
|
sol::stack_guard g(lua);
|
||
|
lua_State* orig = lua;
|
||
|
lua_State* ts = sol::main_thread(lua);
|
||
|
REQUIRE(ts == orig);
|
||
|
}
|
||
|
}
|