Slide 1

Slide 1 text

@sandimetz Apr 2013 The Magic Tricks of Testing Sandi Metz Saturday, April 27, 13

Slide 2

Slide 2 text

@sandimetz Apr 2013 Why do I hate my tests? Saturday, April 27, 13

Slide 3

Slide 3 text

@sandimetz Apr 2013 Why do I hate my tests? Saturday, April 27, 13

Slide 4

Slide 4 text

@sandimetz Apr 2013 They’re slow Saturday, April 27, 13

Slide 5

Slide 5 text

@sandimetz Apr 2013 They’re fragile Saturday, April 27, 13

Slide 6

Slide 6 text

@sandimetz Apr 2013 They’re expensive Saturday, April 27, 13

Slide 7

Slide 7 text

@sandimetz Apr 2013 They are misery Saturday, April 27, 13

Slide 8

Slide 8 text

@sandimetz Apr 2013 They are misery incarnate Saturday, April 27, 13

Slide 9

Slide 9 text

@sandimetz Apr 2013 It doesn’t have to be this way Saturday, April 27, 13

Slide 10

Slide 10 text

@sandimetz Apr 2013 Just delete some tests Saturday, April 27, 13

Slide 11

Slide 11 text

@sandimetz Apr 2013 Unit Tests: Goals Saturday, April 27, 13

Slide 12

Slide 12 text

@sandimetz Apr 2013 Thorough Unit Tests: Goals Saturday, April 27, 13

Slide 13

Slide 13 text

@sandimetz Apr 2013 Thorough Stable Unit Tests: Goals Saturday, April 27, 13

Slide 14

Slide 14 text

@sandimetz Apr 2013 Thorough Stable Fast Unit Tests: Goals Saturday, April 27, 13

Slide 15

Slide 15 text

@sandimetz Apr 2013 Thorough Stable Fast Few Unit Tests: Goals Saturday, April 27, 13

Slide 16

Slide 16 text

@sandimetz Apr 2013 How does your app feel? Saturday, April 27, 13

Slide 17

Slide 17 text

@sandimetz Apr 2013 Saturday, April 27, 13

Slide 18

Slide 18 text

@sandimetz Apr 2013 Focus on messages Saturday, April 27, 13

Slide 19

Slide 19 text

@sandimetz Apr 2013 Objects are simple-minded Saturday, April 27, 13

Slide 20

Slide 20 text

@sandimetz Apr 2013 Object Under Test Saturday, April 27, 13

Slide 21

Slide 21 text

@sandimetz Apr 2013 Saturday, April 27, 13

Slide 22

Slide 22 text

@sandimetz Apr 2013 Object Under Test Saturday, April 27, 13

Slide 23

Slide 23 text

@sandimetz Apr 2013 Object Under Test Received from others Saturday, April 27, 13

Slide 24

Slide 24 text

@sandimetz Apr 2013 Object Under Test Received from others Saturday, April 27, 13

Slide 25

Slide 25 text

@sandimetz Apr 2013 Object Under Test Incoming Saturday, April 27, 13

Slide 26

Slide 26 text

@sandimetz Apr 2013 Sent to others Incoming Object Under Test Saturday, April 27, 13

Slide 27

Slide 27 text

@sandimetz Apr 2013 Sent to others Incoming Object Under Test Saturday, April 27, 13

Slide 28

Slide 28 text

@sandimetz Apr 2013 Incoming Outgoing Object Under Test Saturday, April 27, 13

Slide 29

Slide 29 text

@sandimetz Apr 2013 Sent to self Incoming Outgoing Object Under Test Saturday, April 27, 13

Slide 30

Slide 30 text

@sandimetz Apr 2013 Sent to self Incoming Outgoing Object Under Test Saturday, April 27, 13

Slide 31

Slide 31 text

@sandimetz Apr 2013 Incoming Sent to Self Outgoing Message Origin Saturday, April 27, 13

Slide 32

Slide 32 text

@sandimetz Apr 2013 Sent to self Incoming Outgoing Object Under Test Saturday, April 27, 13

Slide 33

Slide 33 text

@sandimetz Apr 2013 Sent to self Incoming Outgoing Object Under Test Saturday, April 27, 13

Slide 34

Slide 34 text

@sandimetz Apr 2013 Sent to self Incoming Outgoing Object Under Test Saturday, April 27, 13

Slide 35

Slide 35 text

@sandimetz Apr 2013 Sent to self Incoming Outgoing Query Command Object Under Test Saturday, April 27, 13

Slide 36

Slide 36 text

@sandimetz Apr 2013 Query Command Message Type Saturday, April 27, 13

Slide 37

Slide 37 text

@sandimetz Apr 2013 Query: Return something/ change nothing Command: Return nothing/ change something Type Saturday, April 27, 13

Slide 38

Slide 38 text

@sandimetz Apr 2013 Query: Return something/ change nothing Command: Return nothing/ change something Type Saturday, April 27, 13

Slide 39

Slide 39 text

@sandimetz Apr 2013 Query: Return something/ change nothing Command: Return nothing/ change something Type Saturday, April 27, 13

Slide 40

Slide 40 text

@sandimetz Apr 2013 We conflate commands and queries at our peril Saturday, April 27, 13

Slide 41

Slide 41 text

@sandimetz Apr 2013 but we do it all the time Saturday, April 27, 13

Slide 42

Slide 42 text

Query Command Message Origin x Type Outgoing Incoming Type Origin @sandimetz Apr 2013 Message Sent to Self Saturday, April 27, 13

Slide 43

Slide 43 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Part 1 Incoming Saturday, April 27, 13

Slide 44

Slide 44 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Incoming Query Messages Incoming Saturday, April 27, 13

Slide 45

Slide 45 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Incoming Wheel diameter Saturday, April 27, 13

Slide 46

Slide 46 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Wheel    attr_reader  :rim,  :tire    def  initialize(rim,  tire)    #  ...    end    def  diameter        rim  +  (tire  *  2)    end    #  ... Saturday, April 27, 13

Slide 47

Slide 47 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Wheel    attr_reader  :rim,  :tire    def  initialize(rim,  tire)    #  ...    end    def  diameter        rim  +  (tire  *  2)    end    #  ... Saturday, April 27, 13

Slide 48

Slide 48 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Wheel    attr_reader  :rim,  :tire    def  initialize(rim,  tire)    #  ...    end    def  diameter        rim  +  (tire  *  2)    end    #  ... Saturday, April 27, 13

Slide 49

Slide 49 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  WheelTest  <  MiniTest::Unit::TestCase    def  test_calculates_diameter        wheel  =  Wheel.new(26,  1.5)        assert_in_delta(29,                                        wheel.diameter,                                        0.01)    end end Saturday, April 27, 13

Slide 50

Slide 50 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  WheelTest  <  MiniTest::Unit::TestCase    def  test_calculates_diameter        wheel  =  Wheel.new(26,  1.5)        assert_in_delta(29,                                        wheel.diameter,                                        0.01)    end end Saturday, April 27, 13

Slide 51

Slide 51 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  WheelTest  <  MiniTest::Unit::TestCase    def  test_calculates_diameter        wheel  =  Wheel.new(26,  1.5)        assert_in_delta(29,                                        wheel.diameter,                                        0.01)    end end Saturday, April 27, 13

Slide 52

Slide 52 text

@sandimetz Apr 2013 Rule Saturday, April 27, 13

Slide 53

Slide 53 text

@sandimetz Apr 2013 Test incoming query messages Rule Saturday, April 27, 13

Slide 54

Slide 54 text

@sandimetz Apr 2013 Test incoming query messages by making assertions about what they send back Rule Saturday, April 27, 13

Slide 55

Slide 55 text

Query Command The Unit Testing Minimalist Incoming Type @sandimetz Apr 2013 Message Sent to Self Outgoing Origin Saturday, April 27, 13

Slide 56

Slide 56 text

Query Command Assert result The Unit Testing Minimalist Incoming Type @sandimetz Apr 2013 Message Sent to Self Outgoing Origin Saturday, April 27, 13

Slide 57

Slide 57 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Incoming Another Incoming Query Message Saturday, April 27, 13

Slide 58

Slide 58 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Gear gear_inches Incoming Saturday, April 27, 13

Slide 59

Slide 59 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Gear    attr_reader  :chainring,  :cog,  :wheel    def  initialize(args)        #  ...    end      #  ...    def  gear_inches        ratio  *  wheel.diameter    end      private    def  ratio        chainring  /  cog.to_f    end      #  ... end Saturday, April 27, 13

Slide 60

Slide 60 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Gear    attr_reader  :chainring,  :cog,  :wheel    def  initialize(args)        #  ...    end      #  ...    def  gear_inches        ratio  *  wheel.diameter    end      private    def  ratio        chainring  /  cog.to_f    end      #  ... end Saturday, April 27, 13

Slide 61

Slide 61 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Gear    attr_reader  :chainring,  :cog,  :wheel    def  initialize(args)        #  ...    end      #  ...    def  gear_inches        ratio  *  wheel.diameter    end      private    def  ratio        chainring  /  cog.to_f    end      #  ... end Saturday, April 27, 13

Slide 62

Slide 62 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Gear    attr_reader  :chainring,  :cog,  :wheel    def  initialize(args)        #  ...    end      #  ...    def  gear_inches        ratio  *  wheel.diameter    end      private    def  ratio        chainring  /  cog.to_f    end      #  ... end Saturday, April 27, 13

Slide 63

Slide 63 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Gear    attr_reader  :chainring,  :cog,  :wheel    def  initialize(args)        #  ...    end      #  ...    def  gear_inches        ratio  *  wheel.diameter    end      private    def  ratio        chainring  /  cog.to_f    end      #  ... end Wheel Saturday, April 27, 13

Slide 64

Slide 64 text

@sandimetz Apr 2013 Sight along the edges of the space capsule Saturday, April 27, 13

Slide 65

Slide 65 text

@sandimetz Apr 2013 Sight along the edges of the space capsule Saturday, April 27, 13

Slide 66

Slide 66 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)    end end Saturday, April 27, 13

Slide 67

Slide 67 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)    end end Saturday, April 27, 13

Slide 68

Slide 68 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)    end end Saturday, April 27, 13

Slide 69

Slide 69 text

@sandimetz Apr 2013 Test the interface Saturday, April 27, 13

Slide 70

Slide 70 text

@sandimetz Apr 2013 Test the interface (not the implementation) Saturday, April 27, 13

Slide 71

Slide 71 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Incoming Command Messages Incoming Saturday, April 27, 13

Slide 72

Slide 72 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Gear set_cog Incoming Saturday, April 27, 13

Slide 73

Slide 73 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Gear  attr_reader  :chainring,  :cog,  :wheel    def  initialize(args)        #  ...    end    def  set_cog(new_cog)        @cog  =  new_cog    end end Saturday, April 27, 13

Slide 74

Slide 74 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Gear  attr_reader  :chainring,  :cog,  :wheel    def  initialize(args)        #  ...    end    def  set_cog(new_cog)        @cog  =  new_cog    end end Saturday, April 27, 13

Slide 75

Slide 75 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Gear  attr_reader  :chainring,  :cog,  :wheel    def  initialize(args)        #  ...    end    def  set_cog(new_cog)        @cog  =  new_cog    end end Saturday, April 27, 13

Slide 76

Slide 76 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_set_cog        gear  =  Gear.new        gear.set_cog(27)        assert(27,  gear.cog)    end end Saturday, April 27, 13

Slide 77

Slide 77 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_set_cog        gear  =  Gear.new        gear.set_cog(27)        assert(27,  gear.cog)    end end Saturday, April 27, 13

Slide 78

Slide 78 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_set_cog        gear  =  Gear.new        gear.set_cog(27)        assert(27,  gear.cog)    end end Send the message Saturday, April 27, 13

Slide 79

Slide 79 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_set_cog        gear  =  Gear.new        gear.set_cog(27)        assert(27,  gear.cog)    end end Assert the side effect Saturday, April 27, 13

Slide 80

Slide 80 text

@sandimetz Apr 2013 Rule Saturday, April 27, 13

Slide 81

Slide 81 text

@sandimetz Apr 2013 Test incoming command messages Rule Saturday, April 27, 13

Slide 82

Slide 82 text

@sandimetz Apr 2013 Test incoming command messages by making assertions about direct public side effects Rule Saturday, April 27, 13

Slide 83

Slide 83 text

Query Command Assert result The Unit Testing Minimalist Incoming Type @sandimetz Apr 2013 Message Sent to Self Outgoing Origin Saturday, April 27, 13

Slide 84

Slide 84 text

Query Command Assert result The Unit Testing Minimalist Incoming Type @sandimetz Apr 2013 Message Assert direct public side effects Sent to Self Outgoing Origin Saturday, April 27, 13

Slide 85

Slide 85 text

@sandimetz Apr 2013 DRY It Out Saturday, April 27, 13

Slide 86

Slide 86 text

@sandimetz Apr 2013 Receiver of incoming message has sole responsibility DRY It Out Saturday, April 27, 13

Slide 87

Slide 87 text

@sandimetz Apr 2013 Receiver of incoming message has sole responsibility for asserting the result direct public side effects DRY It Out Saturday, April 27, 13

Slide 88

Slide 88 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Part 2 to Self Incoming Saturday, April 27, 13

Slide 89

Slide 89 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Messages Sent to Self to Self Incoming Saturday, April 27, 13

Slide 90

Slide 90 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Gear      #  ...    def  gear_inches        ratio  *  wheel.diameter    end      private    def  ratio        chainring  /  cog.to_f    end      #  ... end Saturday, April 27, 13

Slide 91

Slide 91 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Anti-Pattern to Self Incoming Saturday, April 27, 13

Slide 92

Slide 92 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_ratio        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(4.7,                                        gear.ratio,                                        0.01)    end Saturday, April 27, 13

Slide 93

Slide 93 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_ratio        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(4.7,                                        gear.ratio,                                        0.01)    end Test the private method? Saturday, April 27, 13

Slide 94

Slide 94 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_ratio        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(4.7,                                        gear.ratio,                                        0.01)    end Saturday, April 27, 13

Slide 95

Slide 95 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_ratio        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(4.7,                                        gear.ratio,                                        0.01)    end Saturday, April 27, 13

Slide 96

Slide 96 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_ratio        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(4.7,                                        gear.ratio,                                        0.01)    end Redundant: #gear_inches test is proof enough Saturday, April 27, 13

Slide 97

Slide 97 text

Saturday, April 27, 13

Slide 98

Slide 98 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Anti-Pattern to Self Incoming Saturday, April 27, 13

Slide 99

Slide 99 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Gear      #  ...    def  gear_inches        ratio  *  wheel.diameter    end      private    def  ratio        chainring  /  cog.to_f    end      #  ... end Saturday, April 27, 13

Slide 100

Slide 100 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Gear      #  ...    def  gear_inches        ratio  *  wheel.diameter    end      private    def  ratio        chainring  /  cog.to_f    end      #  ... end Saturday, April 27, 13

Slide 101

Slide 101 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  Gear      #  ...    def  gear_inches        ratio  *  wheel.diameter    end      private    def  ratio        chainring  /  cog.to_f    end      #  ... end Saturday, April 27, 13

Slide 102

Slide 102 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)    end end Saturday, April 27, 13

Slide 103

Slide 103 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)        gear.expect(:ratio)        gear.verify    end Saturday, April 27, 13

Slide 104

Slide 104 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)        gear.expect(:ratio)        gear.verify    end Expect to send the private method? Saturday, April 27, 13

Slide 105

Slide 105 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)        gear.expect(:ratio)        gear.verify    end Over Speci ed: Adds no safety yet breaks with every change Saturday, April 27, 13

Slide 106

Slide 106 text

Saturday, April 27, 13

Slide 107

Slide 107 text

@sandimetz Apr 2013 Rule Saturday, April 27, 13

Slide 108

Slide 108 text

@sandimetz Apr 2013 Do not test private methods Rule Saturday, April 27, 13

Slide 109

Slide 109 text

@sandimetz Apr 2013 Do not test private methods Do not make assertions about their result Rule Saturday, April 27, 13

Slide 110

Slide 110 text

@sandimetz Apr 2013 Do not test private methods Do not make assertions about their result Do not expect to send them Rule Saturday, April 27, 13

Slide 111

Slide 111 text

@sandimetz Apr 2013 Break rule if it saves $$$ during development Caveat Saturday, April 27, 13

Slide 112

Slide 112 text

Query Command Assert result Assert direct public side-effects The Unit Testing Minimalist Incoming Type @sandimetz Apr 2013 Message Sent to Self Outgoing Origin Saturday, April 27, 13

Slide 113

Slide 113 text

Query Command Assert result Assert direct public side-effects The Unit Testing Minimalist Incoming Type @sandimetz Apr 2013 Ignore Message Sent to Self Outgoing Origin Saturday, April 27, 13

Slide 114

Slide 114 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Part 3 to Self Incoming Outgoing Saturday, April 27, 13

Slide 115

Slide 115 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Outgoing Query Messages to Self Incoming Outgoing Saturday, April 27, 13

Slide 116

Slide 116 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Spoiler Alert Same rules as ‘Sent to Self’ to Self Incoming Outgoing Saturday, April 27, 13

Slide 117

Slide 117 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming diameter Gear gear_inches Wheel to Self Incoming Outgoing Saturday, April 27, 13

Slide 118

Slide 118 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  Gear    attr_reader  :chainring,  :cog,  :wheel    def  initialize(args)          #  ...    end    def  gear_inches        ratio  *  wheel.diameter    end      private    def  ratio        chainring  /  cog.to_f    end      #  ... end Saturday, April 27, 13

Slide 119

Slide 119 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  Gear    attr_reader  :chainring,  :cog,  :wheel    def  initialize(args)          #  ...    end    def  gear_inches        ratio  *  wheel.diameter    end      private    def  ratio        chainring  /  cog.to_f    end      #  ... end Wheel Saturday, April 27, 13

Slide 120

Slide 120 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Gear Gear Outgoing Wheel diameter Incoming Query gear_inches to Self Incoming Outgoing Saturday, April 27, 13

Slide 121

Slide 121 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Anti-Pattern to Self Incoming to Self Incoming Outgoing Saturday, April 27, 13

Slide 122

Slide 122 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)    end end Saturday, April 27, 13

Slide 123

Slide 123 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)          assert_in_delta(29,                                        gear.wheel.diameter,                                        0.01)    end end Saturday, April 27, 13

Slide 124

Slide 124 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)          assert_in_delta(29,                                        gear.wheel.diameter,                                        0.01)    end end Assert result of outgoing query? Saturday, April 27, 13

Slide 125

Slide 125 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)          assert_in_delta(29,                                        gear.wheel.diameter,                                        0.01)    end end Redundant: Duplicates Wheel’s tests Saturday, April 27, 13

Slide 126

Slide 126 text

Saturday, April 27, 13

Slide 127

Slide 127 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Anti-Pattern to Self Incoming to Self Incoming Outgoing Saturday, April 27, 13

Slide 128

Slide 128 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)          gear.wheel.expect(:diameter)        gear.verify    end end Saturday, April 27, 13

Slide 129

Slide 129 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)          gear.wheel.expect(:diameter)        gear.verify    end end Expect to send outgoing query? Saturday, April 27, 13

Slide 130

Slide 130 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_calculates_gear_inches        gear  =    Gear.new(                            chainring:  52,                            cog:              11,                            wheel:          Wheel.new(26,  1.5))        assert_in_delta(137.1,                                        gear.gear_inches,                                        0.01)          gear.wheel.expect(:diameter)        gear.verify    end end Over Speci ed: Adds costs but not bene ts Saturday, April 27, 13

Slide 131

Slide 131 text

Saturday, April 27, 13

Slide 132

Slide 132 text

@sandimetz Apr 2013 Rule Saturday, April 27, 13

Slide 133

Slide 133 text

@sandimetz Apr 2013 Rule Do not test outgoing query messages Saturday, April 27, 13

Slide 134

Slide 134 text

@sandimetz Apr 2013 Rule Do not test outgoing query messages Do not make assertions about their result Saturday, April 27, 13

Slide 135

Slide 135 text

@sandimetz Apr 2013 Rule Do not test outgoing query messages Do not make assertions about their result Do not expect to send them Saturday, April 27, 13

Slide 136

Slide 136 text

@sandimetz Apr 2013 If a message has no visible side-effects Saturday, April 27, 13

Slide 137

Slide 137 text

@sandimetz Apr 2013 If a message has no visible side-effects the sender should not test it Saturday, April 27, 13

Slide 138

Slide 138 text

Query Command Assert result Assert direct public side effects The Unit Testing Minimalist Incoming Type @sandimetz Apr 2013 Message Ignore Sent to Self Outgoing Origin Saturday, April 27, 13

Slide 139

Slide 139 text

Query Command Assert result Assert direct public side effects The Unit Testing Minimalist Incoming Type @sandimetz Apr 2013 Message Ignore Sent to Self Outgoing Origin Saturday, April 27, 13

Slide 140

Slide 140 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Outgoing Command Messages to Self Incoming Outgoing Saturday, April 27, 13

Slide 141

Slide 141 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming diameter gear_inches set_cog changed Wheel Gear Obs to Self Incoming Outgoing Saturday, April 27, 13

Slide 142

Slide 142 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  Gear    attr_reader  :chainring,  :cog,  :wheel    def  initialize(args)              #  ...      end    def  set_cog(new_cog)        @cog  =  new_cog    end end Change #set_cog to add observer Saturday, April 27, 13

Slide 143

Slide 143 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  Gear    attr_reader  :chainring,  :cog,  :wheel    def  initialize(args)              #  ...      end    def  set_cog(new_cog)        @cog  =  new_cog    end end Saturday, April 27, 13

Slide 144

Slide 144 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  Gear    attr_reader  :chainring,  :cog,  :wheel,  :observer    def  initialize(args)              #  ...        @observer    =  args[:observer]    end    def  set_cog(new_cog)        @cog  =  new_cog    end end Saturday, April 27, 13

Slide 145

Slide 145 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  Gear      #  ...    def  set_cog(new_cog)        @cog  =  new_cog    end end Saturday, April 27, 13

Slide 146

Slide 146 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  Gear      #  ...    def  set_cog(new_cog)        @cog  =  new_cog    end end Saturday, April 27, 13

Slide 147

Slide 147 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  Gear      #  ...    def  set_cog(new_cog)        @cog  =  new_cog        changed        @cog    end    def  changed        observer.changed(chainring,  cog)    end end Saturday, April 27, 13

Slide 148

Slide 148 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  Gear      #  ...    def  set_cog(new_cog)        @cog  =  new_cog        changed        @cog    end    def  changed        observer.changed(chainring,  cog)    end end Saturday, April 27, 13

Slide 149

Slide 149 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Gear set_cog changed Obs to Self Incoming Outgoing Saturday, April 27, 13

Slide 150

Slide 150 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Gear set_cog changed Obs Side Effects to Self Incoming Outgoing Saturday, April 27, 13

Slide 151

Slide 151 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming changed Gear set_cog Obs Incoming Command Side Effects to Self Incoming Outgoing Saturday, April 27, 13

Slide 152

Slide 152 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Gear Outgoing set_cog Obs changed Incoming Command Side Effects to Self Incoming Outgoing Saturday, April 27, 13

Slide 153

Slide 153 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  Gear        #  ...    def  set_cog(new_cog)        @cog  =  new_cog        changed        @cog    end    def  changed        observer.changed(chainring,  cog)    end end Saturday, April 27, 13

Slide 154

Slide 154 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  Gear        #  ...    def  set_cog(new_cog)        @cog  =  new_cog        changed        @cog    end    def  changed        observer.changed(chainring,  cog)    end end This message MUST get sent Saturday, April 27, 13

Slide 155

Slide 155 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Outgoing Incoming Anti-Pattern to Self Incoming Outgoing Saturday, April 27, 13

Slide 156

Slide 156 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_saves_changed_cog_in_db        @observer  =  Obs.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)          @gear.set_cog(27)          #  assert  something  about  the  state  of  the  db    end end Saturday, April 27, 13

Slide 157

Slide 157 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_saves_changed_cog_in_db        @observer  =  Obs.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)          @gear.set_cog(27)          #  assert  something  about  the  state  of  the  db    end end Saturday, April 27, 13

Slide 158

Slide 158 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_saves_changed_cog_in_db        @observer  =  Obs.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)          @gear.set_cog(27)          #  assert  something  about  the  state  of  the  db    end end Saturday, April 27, 13

Slide 159

Slide 159 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_saves_changed_cog_in_db        @observer  =  Obs.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)          @gear.set_cog(27)          #  assert  something  about  the  state  of  the  db    end end Saturday, April 27, 13

Slide 160

Slide 160 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_saves_changed_cog_in_db        @observer  =  Obs.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)          @gear.set_cog(27)          #  assert  something  about  the  state  of  the  db    end end Depends on the distant side effect Saturday, April 27, 13

Slide 161

Slide 161 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_saves_changed_cog_in_db        @observer  =  Obs.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)          @gear.set_cog(27)          #  assert  something  about  the  state  of  the  db    end end Is this Gear’s responsibility? Saturday, April 27, 13

Slide 162

Slide 162 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_saves_changed_cog_in_db        @observer  =  Obs.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)          @gear.set_cog(27)          #  assert  something  about  the  state  of  the  db    end end Is this Gear’s responsibility? Saturday, April 27, 13

Slide 163

Slide 163 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_saves_changed_cog_in_db        @observer  =  Obs.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)          @gear.set_cog(27)          #  assert  something  about  the  state  of  the  db    end end This is an integration test Saturday, April 27, 13

Slide 164

Slide 164 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_notifies_observers_when_cogs_change        @observer  =  MiniTest::Mock.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)        @observer.expect(:changed,  true,  [52,  27])        @gear.set_cog(27)        @observer.verify    end Saturday, April 27, 13

Slide 165

Slide 165 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_notifies_observers_when_cogs_change        @observer  =  MiniTest::Mock.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)        @observer.expect(:changed,  true,  [52,  27])        @gear.set_cog(27)        @observer.verify    end Saturday, April 27, 13

Slide 166

Slide 166 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_notifies_observers_when_cogs_change        @observer  =  MiniTest::Mock.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)        @observer.expect(:changed,  true,  [52,  27])        @gear.set_cog(27)        @observer.verify    end Saturday, April 27, 13

Slide 167

Slide 167 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_notifies_observers_when_cogs_change        @observer  =  MiniTest::Mock.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)        @observer.expect(:changed,  true,  [52,  27])        @gear.set_cog(27)        @observer.verify    end Saturday, April 27, 13

Slide 168

Slide 168 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_notifies_observers_when_cogs_change        @observer  =  MiniTest::Mock.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)        @observer.expect(:changed,  true,  [52,  27])        @gear.set_cog(27)        @observer.verify    end Saturday, April 27, 13

Slide 169

Slide 169 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_notifies_observers_when_cogs_change        @observer  =  MiniTest::Mock.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)        @observer.expect(:changed,  true,  [52,  27])        @gear.set_cog(27)        @observer.verify    end Saturday, April 27, 13

Slide 170

Slide 170 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_notifies_observers_when_cogs_change        @observer  =  MiniTest::Mock.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)        @observer.expect(:changed,  true,  [52,  27])        @gear.set_cog(27)        @observer.verify    end Depends on the interface Saturday, April 27, 13

Slide 171

Slide 171 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_notifies_observers_when_cogs_change        @observer  =  MiniTest::Mock.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)        @observer.expect(:changed,  true,  [52,  27])        @gear.set_cog(27)        @observer.verify    end Gear is responsible for sending #changed to @observer Saturday, April 27, 13

Slide 172

Slide 172 text

@sandimetz Apr 2013 Rule Saturday, April 27, 13

Slide 173

Slide 173 text

@sandimetz Apr 2013 Expect to send outgoing command messages Rule Saturday, April 27, 13

Slide 174

Slide 174 text

@sandimetz Apr 2013 Break rule if side effects are stable and cheap Caveat Saturday, April 27, 13

Slide 175

Slide 175 text

Query Command Assert result Assert direct public side effects Ignore The Unit Testing Minimalist Incoming Type @sandimetz Apr 2013 Message Ignore Sent to Self Outgoing Origin Saturday, April 27, 13

Slide 176

Slide 176 text

Query Command Assert result Assert direct public side effects Ignore Expect to send The Unit Testing Minimalist Incoming Type @sandimetz Apr 2013 Message Ignore Sent to Self Outgoing Origin Saturday, April 27, 13

Slide 177

Slide 177 text

@sandimetz Apr 2013 But Saturday, April 27, 13

Slide 178

Slide 178 text

@sandimetz GoGaRuCo 2012 @sandimetz Apr 2013 to Self Incoming Outgoing class  GearTest  <  MiniTest::Unit::TestCase    def  test_notifies_observers_when_cogs_change        @observer  =  MiniTest::Mock.new        @gear          =  Gear.new(                                    chainring:  52,                                    cog:              11,                                    observer:    @observer)        @observer.expect(:changed,  true,  [52,  27])        @gear.set_cog(27)        @observer.verify    end What happens if Observer stops implementing #changed? Saturday, April 27, 13

Slide 179

Slide 179 text

@sandimetz Apr 2013 Pain Saturday, April 27, 13

Slide 180

Slide 180 text

@sandimetz Apr 2013 API Drift Pain Saturday, April 27, 13

Slide 181

Slide 181 text

@sandimetz Apr 2013 Rule Saturday, April 27, 13

Slide 182

Slide 182 text

@sandimetz Apr 2013 Honor the contract Rule Saturday, April 27, 13

Slide 183

Slide 183 text

@sandimetz Apr 2013 Honor the contract Ensure test doubles stay in sync with the API Rule Saturday, April 27, 13

Slide 184

Slide 184 text

@sandimetz Apr 2013 Automagically  minitest: requires that stubbed methods exist  rspec: #should_receive(:msg).and_call_original  https://github.com/psyho/bogus  https://github.com/benmoss/quacky  https://github.com/xaviershay/rspec-­‐fire  https://github.com/cfcosta/minitest-­‐firemock Saturday, April 27, 13

Slide 185

Slide 185 text

@sandimetz Apr 2013 Summary Saturday, April 27, 13

Slide 186

Slide 186 text

@sandimetz Apr 2013 Be a minimalist Saturday, April 27, 13

Slide 187

Slide 187 text

Query Command Assert result Assert direct public side effects Ignore Expect to send Incoming Type @sandimetz Apr 2013 Message Ignore Sent to Self Outgoing Origin Saturday, April 27, 13

Slide 188

Slide 188 text

@sandimetz Apr 2013 Use good judgement Saturday, April 27, 13

Slide 189

Slide 189 text

@sandimetz Apr 2013 Test Saturday, April 27, 13

Slide 190

Slide 190 text

@sandimetz Apr 2013 Test. Everything Saturday, April 27, 13

Slide 191

Slide 191 text

@sandimetz Apr 2013 Test . Everything. Once Saturday, April 27, 13

Slide 192

Slide 192 text

@sandimetz Apr 2013 Test the interface Saturday, April 27, 13

Slide 193

Slide 193 text

@sandimetz Apr 2013 Trust collaborators Saturday, April 27, 13

Slide 194

Slide 194 text

@sandimetz Apr 2013 Insist on simplicity Saturday, April 27, 13

Slide 195

Slide 195 text

@sandimetz Apr 2013 Practice the Tricks Saturday, April 27, 13

Slide 196

Slide 196 text

@sandimetz Apr 2013 Saturday, April 27, 13

Slide 197

Slide 197 text

@sandimetz Apr 2013 Saturday, April 27, 13

Slide 198

Slide 198 text

@sandimetz Apr 2013 I love my tests Saturday, April 27, 13

Slide 199

Slide 199 text

Thanks Sandi Metz @sandimetz Saturday, April 27, 13

Slide 200

Slide 200 text

http://www. ickr.com/photos/phil_shirley/5452562957/ thicket http://www. ickr.com/photos/zebble/6080622/ one padlock http://www. ickr.com/photos/chrisinplymouth/5543281168/ two padlocks http://www. ickr.com/photos/donjohnson395/2915304926/ twins at beach http://www.med.navy.mil/sites/nmcp/Patients/pediatrics/PublishingImages/binocular_boy.gif http://upload.wikimedia.org/wikipedia/commons/e/e1/Ordinary_bicycle02.jpg ordinary bike Magic Hat (82805980) Copyright Mmaxer - Shutterstock.com Dogs in Hats (39263399) Copyright MLoiselle - Fotolia.com Garden (35521385) Copyright Beboy - Fotolia.com Space Walk - Nasa http://grin.hq.nasa.gov/copyright.html Photo Credits Saturday, April 27, 13

Slide 201

Slide 201 text

@sandimetz Apr 2013 http://poodr.info Saturday, April 27, 13

Slide 202

Slide 202 text

Questions? Saturday, April 27, 13

Slide 203

Slide 203 text

@sandimetz Apr 2013 http://poodr.info Saturday, April 27, 13