Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds a simple exercise for structures #163

Merged
merged 1 commit into from
May 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions exercises/structs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
### Strings

Rust has three struct types: a classic c struct, a tuple struct, and a unit struct.

#### Book Sections

- [Structures](https://doc.rust-lang.org/rust-by-example/custom_types/structs.html)
46 changes: 46 additions & 0 deletions exercises/structs/structs1.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
// structs1.rs
// Address all the TODOs to make the tests pass!

struct ColorClassicStruct {
// TODO: Something goes here
}

struct ColorTupleStruct(/* TODO: Something goes here */);

struct ColorUnitStruct;

#[cfg(test)]
mod tests {
use super::*;

#[test]
fn classic_c_structs() {
// TODO: Instantiate a classic c struct!
// let green =

assert_eq!(green.name, "green");
assert_eq!(green.hex, "#00FF00");
}

#[test]
fn tuple_structs() {
// TODO: Instantiate a tuple struct!
// For more fun, use the field initialization shorthand.
// let green =

assert_eq!(green.0, "green");
assert_eq!(green.1, "#00FF00");
}

#[test]
fn unit_structs() {
// TODO: Instantiate a unit struct!
// let green =

if let ColorUnitStruct = green {
assert!(true);
} else {
assert!(false);
}
}
}
6 changes: 6 additions & 0 deletions info.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ mode = "compile"
path = "exercises/primitive_types/primitive_types6.rs"
mode = "compile"

# STRUCTS

[[exercises]]
path = "exercises/structs/structs1.rs"
mode = "test"

# TESTS

[[exercises]]
Expand Down